home *** CD-ROM | disk | FTP | other *** search
- /* The default patterns for DiskSalv */
-
- /* This pattern matches only files that haven't
- been archived. Suggested for use with the
- Backup Mode. */
-
- pattern "Ohne Archivbit" {
- protection("!A");
- match("include");
- };
-
- /* This pattern only matches things that fit on
- floppy disks. */
-
- pattern "Passt auf Floppy" {
- size("<", 840K);
- match("include");
- };
-
- /* This pattern only matches things that are too
- big for floppies. */
-
- pattern "Zu groß für Floppy" {
- size(">", 840K);
- match("include");
- };
-
- /* This pattern excludes all .info files. */
-
- pattern "Keine .Info's" {
- path("#?.info");
- match("exclude");
- };
-